home *** CD-ROM | disk | FTP | other *** search
/ Grand Slam / GrandSlam volume 1.iso / 004 / ixrtl1.arj / RESTORE.BAT < prev    next >
DOS Batch File  |  1994-05-28  |  587b  |  27 lines

  1. @echo off
  2. cls
  3. echo: 
  4. echo: 
  5. echo: 
  6. if "%1"=="" goto nogood
  7. echo: This program will restore your game under the name of %1
  8. echo: from SAFE.INX
  9. echo: Once inside the game, press ENTER,
  10. echo: Type the command LOAD
  11. echo: Type %1 and press ENTER.
  12. echo:
  13. echo: Press ENTER to copy from SAFE.INX to %1.INX , or...
  14. echo: ...press CTRL-C or CTRL-BREAK to interrupt this program.
  15. pause
  16. copy safe.inx %1.inx
  17. echo: It is done. You may run the program now.
  18. goto end
  19. :nogood
  20. echo: 
  21. echo: 
  22. Echo: Usage: RESTORE name (you wish to create from SAFE.INX)
  23. echo: 
  24. echo: 
  25. echo: 
  26. :end
  27.